home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP11 / HEXCALC.MAK < prev    next >
Encoding:
Text File  |  1996-01-01  |  330 b   |  13 lines

  1. #-----------------------
  2. # HEXCALC.MAK make file
  3. #-----------------------
  4.  
  5. hexcalc.exe : hexcalc.obj hexcalc.res
  6.      $(LINKER) $(GUIFLAGS) -OUT:hexcalc.exe hexcalc.obj hexcalc.res $(GUILIBS)
  7.  
  8. hexcalc.obj : hexcalc.c
  9.      $(CC) $(CFLAGS) hexcalc.c
  10.  
  11. hexcalc.res : hexcalc.rc hexcalc.ico
  12.      $(RC) $(RCVARS) hexcalc.rc
  13.